Additional fields of Events V2 API

Hi,

I don’t see additional fields in the incident after I use Events V2 API: source, component, group, class. Interestingly, “source” is used in the Events V2 official cURL command example visible in the UI.
Those additional fields are listed in https://developer.pagerduty.com/docs/ZG9jOjExMDI5NTgx-send-an-alert-event.
At the same time: summary, severity, client, links, images, custom_details are visible.

Does anybody have an idea why those fields are not visible after triggering the incident? “Event Details” page (“View message” link from the incident) doesn’t show those fields in the payload JSON.

Example cURL:
curl --request ‘POST’
–url ‘https://events.pagerduty.com/v2/enqueue
–header ‘Content-Type: application/json’
–data ‘{
“payload”: {
“summary”: “Test alert summary”,
“severity”: “warning”,
“source”: “Alert source”,
“component”: “component”,
“group”:“group”,
“class”:“class”,
“custom_details”: {
“key1”: “value1”,
“key2”: “value2”
}
},
“routing_key”: “”,
“event_action”: “trigger”,
“dedup_key”: “dedup_key”,
“client”:“client”
}’